home *** CD-ROM | disk | FTP | other *** search
- ;╔══════════════════════════════════════════════════════════════════════════╗
- ;║ ║
- ;║ This example show how to call the 32 bit debugger ║
- ;║ ║
- ;║ Tabs : 13 21 29 37 ║
- ;║ ║
- ;╚══════════════════════════════════════════════════════════════════════════╝
-
- Locals
- .386
- CODE32 SEGMENT PUBLIC PARA 'CODE' USE32
- ASSUME CS:CODE32,DS:CODE32,ES:CODE32
-
- INCLUDE ..\RESOURCE\EOS.INC
-
- Msg db ' ■ Hello world...',13,10,36
-
-
- Start32:
- call debug ; Where you want !!! Alt-x to exit
-
- mov ah,9
- mov edx,O Msg
- int 21h ; Call Display String
-
- mov ax,4c00h
- int 21h ; Exit with Error Code 0
-
-
- CODE32 ENDS
-
- END